All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.CannotProceedException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.naming.NamingException
                           |
                           +----java.naming.CannotProceedException

public class CannotProceedException
extends NamingException
This exception is raised to indicate that this operation cannot proceed any further. When performing an operation on a composite name, a naming service provider reaches a part of the name that does not belong in its namespace. At that point, it can invoke methods provided by java.naming.spi.NamingManager (such as getContinuationContext()) to locate another provider to continue the operation. If this is not possible, this exception is raised to the caller of the context operation.


Constructor Index

 o CannotProceedException()
Constructs a new instance of CannotProceedException.
 o CannotProceedException(Name, Object, Name)
Constructs a new instance of CannotProceedException using the arguments supplied.
 o CannotProceedException(Name, Object, Name, String)
Constructs a new instance of CannotProceedException using the arguments supplied.
 o CannotProceedException(Object, Name)
Constructs a new instance of CannotProceedException using the arguments supplied.
 o CannotProceedException(String)
Constructs a new instance of CannotProceedException using the arguments supplied.

Constructors

 o CannotProceedException
 public CannotProceedException(Name resolvedName,
                               Object resolvedObj,
                               Name remainingName,
                               String explanation)
Constructs a new instance of CannotProceedException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
explanation - Additional detail about this exception.
 o CannotProceedException
 public CannotProceedException(Object resolvedObj,
                               Name remainingName)
Constructs a new instance of CannotProceedException using the arguments supplied.

Parameters:
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o CannotProceedException
 public CannotProceedException(Name resolvedName,
                               Object resolvedObj,
                               Name remainingName)
Constructs a new instance of CannotProceedException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o CannotProceedException
 public CannotProceedException(String explanation)
Constructs a new instance of CannotProceedException using the arguments supplied.

Parameters:
explanation - Additional detail about this exception.
 o CannotProceedException
 public CannotProceedException()
Constructs a new instance of CannotProceedException.


All Packages  Class Hierarchy  This Package  Previous  Next  Index